type crypto/cipher.gcmWithRandomNonce

6 uses

	crypto/cipher (current package)
		gcm.go#L102: 	return gcmWithRandomNonce{g}, nil
		gcm.go#L105: type gcmWithRandomNonce struct {
		gcm.go#L109: func (g gcmWithRandomNonce) NonceSize() int {
		gcm.go#L113: func (g gcmWithRandomNonce) Overhead() int {
		gcm.go#L117: func (g gcmWithRandomNonce) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
		gcm.go#L164: func (g gcmWithRandomNonce) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {